home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / tests / pdevtest / spur.md / printMachDepStats.c < prev   
Encoding:
C/C++ Source or Header  |  1989-10-23  |  1.2 KB  |  46 lines

  1. /* 
  2.  * printMachDepStats.c --
  3.  *
  4.  *    Routine to print out machine dependent vm statistics.
  5.  *
  6.  * Copyright 1989 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/lib/forms/RCS/proto.c,v 1.2 89/01/07 04:12:18 rab Exp $ SPRITE (Berkeley)";
  18. #endif /* not lint */
  19.  
  20.  
  21. /*
  22.  *----------------------------------------------------------------------
  23.  *
  24.  * PrintMachDepStats --
  25.  *
  26.  *    Prints out machine dependent vm statistics.
  27.  *    Not implemented on the spur.
  28.  *
  29.  * Results:
  30.  *    None.
  31.  *
  32.  * Side effects:
  33.  *    Stuff is printed to the stream.
  34.  *
  35.  *----------------------------------------------------------------------
  36.  */
  37.  
  38. /*ARGSUSED*/
  39. void
  40. PrintMachDepStats(statsPtr, stream)
  41.     VmMachDepStat    *statsPtr;      /* Ptr at stats structure. */
  42.     FILE        *stream;    /* Stream to print to. */
  43. {
  44. }
  45.  
  46.